home *** CD-ROM | disk | FTP | other *** search
- on checkMainRollover
- global gLastRolledOn, gLastRolledCast, gNumberofSpritesToRollover, gChannelOfFirstRollover, gCastOfSprite15
- repeat with i = 1 to 8
- put i
- set lCastNumToCheck to the castNum of sprite (i + 5)
- if rollOver(i + 5) = 1 then
- if gLastRolledOn = i then
- exit
- end if
- if gLastRolledOn <> 0 then
- resetDoor()
- set the castNum of sprite (gLastRolledOn + 5) to the number of cast gLastRolledCast
- set the castNum of sprite 15 to the number of cast gCastOfSprite15
- end if
- set gLastRolledCast to the name of cast the castNum of sprite (i + 5)
- set lCastName to char 1 to 7 of gLastRolledCast
- set lDestName to "Dest" && string(i - 1)
- set the castNum of sprite (i + 5) to the number of cast lCastName
- if i <> 1 then
- set the castNum of sprite 15 to the number of cast lDestName
- end if
- set gLastRolledOn to i
- exit
- end if
- end repeat
- if gLastRolledOn = 0 then
- exit
- end if
- resetDoor()
- set the castNum of sprite (gLastRolledOn + 5) to the number of cast gLastRolledCast
- set the castNum of sprite 15 to the number of cast gCastOfSprite15
- set gLastRolledOn to 0
- end
-
- on puppetizerMan
- repeat with i = 6 to 13
- puppetSprite(i, 1)
- end repeat
- puppetSprite(15, 1)
- end
-
- on MoviePuppets
- repeat with i = 19 to 23
- puppetSprite(i, 1)
- end repeat
- end
-
- on TurnOffRollovers
- repeat with i = 6 to 15
- puppetSprite(i, 0)
- end repeat
- end
-
- on VCRPanel
- global gQTOn, gLastRate, gVCRChannel, gMooVChannel
- puppetSprite(26, 1)
- set x to the clickLoc
- set lStr to getAt(x, 2)
- set lLocV to value(lStr)
- if lLocV < 381 then
- set gLastRate to 2
- set the castNum of sprite 26 to the number of cast "FFbutton"
- else
- if lLocV < 399 then
- set gLastRate to 1
- set the castNum of sprite 26 to the number of cast "PLAYbutton"
- else
- if lLocV < 417 then
- set gLastRate to 0
- set the castNum of sprite 26 to the number of cast "STOPbutton"
- else
- set gLastRate to -1
- set the castNum of sprite 26 to the number of cast "REVbutton"
- end if
- end if
- end if
- set the movieRate of sprite 2 to gLastRate
- updateStage()
- end
-
- on TurnOffMovies
- repeat with i = 19 to 23
- puppetSprite(i, 0)
- end repeat
- end
-